home *** CD-ROM | disk | FTP | other *** search
/ VisualFX for ImageFX / VisualFX for Image FX 2.adf / Files / SetUp / 02 / 17.rexx < prev    next >
Encoding:
OS/2 REXX Batch file  |  1997-01-23  |  744 b   |  31 lines

  1. /*
  2.                                  Visual FX
  3.                                     For
  4.                                  Image FX
  5.                                SetUp Script
  6.                            Written By J.L. White
  7.  
  8.                          (C)1997 Merlin's Software
  9.  
  10. */
  11. parse arg Num
  12. options results
  13. address "IMAGEFX.1"
  14.  
  15.  
  16.     Gadget.1 = 'Select Direction To Move Screen!'
  17.     Gadget.2 = 'From Top Left'
  18.     Gadget.3 = 'From Bottom Left'
  19.     Gadget.4 = 'From Top Right'
  20.     Gadget.5 = 'From Bottom Right'
  21.     ListRequest 5 Gadget
  22.     Type = 0
  23.     if result = 2 then Type = 0
  24.     if result = 3 then Type = 1
  25.     if result = 4 then Type = 2
  26.     if result = 5 then Type = 3
  27.  
  28. call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
  29. call writeln TempFile,Type
  30. call close TempFile
  31.